home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE09 / CODERS / MBEXPERT.DPR < prev    next >
Text File  |  1996-04-04  |  211b  |  14 lines

  1. program Mbexpert;
  2.  
  3. uses
  4.   Forms,
  5.   Mbform1 in 'MBFORM1.PAS' {MBDesigner},
  6.   Expttool in 'EXPTTOOL.PAS';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TMBDesigner, MBDesigner);
  12.   Application.Run;
  13. end.
  14.